home *** CD-ROM | disk | FTP | other *** search
/ Your Choice 3 / Your Choice Software Collection 3.iso / cdrom.txt next >
Text File  |  1994-11-09  |  2KB  |  57 lines

  1. INFORMATION ABOUT CD-ROM'S
  2. ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  3.  
  4. Information
  5. ===========
  6.  
  7. CD-ROM = Compact Disc - Read Only Memory
  8.  
  9. The files on a CD-ROM are in 'READ-ONLY'-attribute.
  10. This is because you cannot write on a CD-ROM.
  11.  
  12.  
  13. Copying
  14. =======
  15.  
  16. If you want to copy files from your CD-ROM to your harddisk, the
  17. file-attributes of these files will also be copied to your
  18. harddisk.
  19.  
  20. This can give program-errors and runtime-errors of some programs.
  21. Because of the files you copied to your harddisk are also in
  22. READ-ONLY attribute, some programs have trouble with reading or
  23. writing their files.
  24.  
  25. It all depends with which copy-program you copy your files.
  26. Some copy-programs don't copy the 'READ-ONLY'-attribute to your
  27. harddisk. (e.g.: 'COPY' ==> DOS, 4-DOS, N-DOS,...)
  28.  
  29. Norton Commander for example, copies the 'READ-ONLY'-attribute to
  30. your harddisk.  So all these files will be in 'READ-ONLY'-attribute
  31. on your harddisk.  This can cause many problems with some programs,
  32. like files which cannot be read, updated or written to disk.
  33.  
  34. If you like for example Norton Commander, and you want to copy files
  35. from within N.C., you should use the command 'ATTRIB' after the
  36. copy-process.
  37.  
  38.  
  39. The external-command 'ATTRIB' from DOS.
  40. =======================================
  41.  
  42. With this command it's possible to change the attributes of 1 file or
  43. more, even whole directories with all its sub-dirs and files is possible.
  44.  
  45. For example you have a directory on your harddisk 'C:\TEST' and all the
  46. files and sub-dirs beneath this directory are in 'READ-ONLY'-attribute.
  47. You can clear these attributes of all these files by typing at the prompt:
  48.  
  49.   ATTRIB -R C:\TEST /S
  50.  
  51. Now this program 'TEST' will function properly.
  52. The command 'ATTRIB' must reside in your DOS-path (mostly C:\DOS).
  53. In your autoexec.bat file should be a line like :
  54.  
  55.   SET PATH=C:\DOS; ...etc.
  56.  
  57.